VideoHelp Forum




+ Reply to Thread
Results 1 to 3 of 3
  1. I use VS R70, with the following test script:

    Code:
    import vapoursynth as vs
    
    core = vs.core
    core.max_cache_size = 65535
    
    vid = core.dgdecodenv.DGSource (r'c:\jobs\austin2.dgi')
    vid = core.resize.Point(vid, format = vs.YUV420P10)
    vid = core.neo_f3kdb.Deband (vid, preset="veryhigh", dither_algo=2)
    vid = core.sub.ImageFile (vid, file=r'g:\jobs\cutie.sup', blend=True)
    
    vid.set_output ()
    The official blu-ray .sup (see attachment) plays until sub 7, then keeps displaying sub 7 for ever

    subtile edit view

    This makes absolutely no sense, especially since I processed this blu-ray a few years before, with the same .sup file (but an older VapourSynth install).

    EDIT: This post was supposed to have an attachment; guess not:

    the .sup file
    Quote Quote  
  2. Since the .sup file works fine here, have you tried a simpler script?
    Code:
    import vapoursynth as vs
    
    core = vs.core
    
    vid = core.dgdecodenv.DGSource (r'c:\jobs\austin2.dgi')
    vid = core.sub.ImageFile(vid, file=r'g:\jobs\cutie.sup')
    
    vid.set_output ()
    Have you tried different subtext releases? (https://github.com/vapoursynth/subtext/releases)

    Cu Selur
    users currently on my ignore list: deadrats, Stears555, marcorocchini
    Quote Quote  
  3. Originally Posted by Selur View Post
    Since the .sup file works fine here, have you tried a simpler script?
    Code:
    import vapoursynth as vs
    
    core = vs.core
    
    vid = core.dgdecodenv.DGSource (r'c:\jobs\austin2.dgi')
    vid = core.sub.ImageFile(vid, file=r'g:\jobs\cutie.sup')
    
    vid.set_output ()
    Have you tried different subtext releases? (https://github.com/vapoursynth/subtext/releases)

    Cu Selur
    Thank you, I wound up using the subtext release you provided. All is good again, now.
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!